home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update26.zoo / libg++ / tests / diffs
Encoding:
Text File  |  1992-11-07  |  3.8 KB  |  158 lines

  1. *** 1.1    1992/03/22 21:15:45
  2. --- PatchLev.h    1992/11/08 00:54:57
  3. ***************
  4. *** 1,5 ****
  5.   
  6. ! #define    PatchLevel "2"
  7.   
  8.   /*
  9.    *    the Patch Level above is to identify the version
  10. --- 1,5 ----
  11.   
  12. ! #define    PatchLevel "8"
  13.   
  14.   /*
  15.    *    the Patch Level above is to identify the version
  16. *** 1.1    1992/03/22 21:15:45
  17. --- expected.out    1992/11/08 00:54:57
  18. ***************
  19. *** 127,133 ****
  20.   five
  21.   words
  22.   z = join(w, nw, /); z =This/string/has/five/words
  23. ! enter a word:
  24.   tinteger
  25.   one = 1
  26.   one + 1 = 2
  27. --- 127,135 ----
  28.   five
  29.   words
  30.   z = join(w, nw, /); z =This/string/has/five/words
  31. ! enter a word:word =abcdefghijklmnopqrstuvwxyz length = 26
  32. ! End of test
  33.   tinteger
  34.   one = 1
  35.   one + 1 = 2
  36. ***************
  37. *** 444,450 ****
  38.   five samples:
  39.   10.4918 0.295112 0.184577 2.14799 0.10053 
  40.   Statistics for 100 samples:
  41. ! samples: 100 min: 0.000236481 max: 15.4934
  42.   mean: 1.96369 stdDev: 2.97642 var: 8.85906 confidence(95): 0.59072
  43.   SampleHistogram for 100 Normal samples
  44.   < -4 : 0
  45. --- 446,452 ----
  46.   five samples:
  47.   10.4918 0.295112 0.184577 2.14799 0.10053 
  48.   Statistics for 100 samples:
  49. ! samples: 100 min: 2.36481e-04 max: 15.4934
  50.   mean: 1.96369 stdDev: 2.97642 var: 8.85906 confidence(95): 0.59072
  51.   SampleHistogram for 100 Normal samples
  52.   < -4 : 0
  53. ***************
  54. *** 507,513 ****
  55.   len = 33
  56.   siz = 3
  57.   ref = 1
  58. ! man =  ccccccc8000
  59.   val = 0.1
  60.   
  61.   Fix: range errors warned
  62. --- 509,515 ----
  63.   len = 33
  64.   siz = 3
  65.   ref = 1
  66. ! man = ccccccc8000            
  67.   val = 0.1
  68.   
  69.   Fix: range errors warned
  70. *** 1.1    1992/03/22 21:15:45
  71. --- makefile.32    1992/11/08 00:54:58
  72. ***************
  73. *** 6,12 ****
  74.   AS= $(CC)
  75.   
  76.   # common subset of options; no int size or omit-frame-pointer:
  77. ! COMMONOPT = -O
  78.   COMMONFLAGS =
  79.   COMMONDEFINES = -DNO_LIBGXX_MALLOC
  80.   
  81. --- 6,12 ----
  82.   AS= $(CC)
  83.   
  84.   # common subset of options; no int size or omit-frame-pointer:
  85. ! COMMONOPT = -O2 -fstrength-reduce
  86.   COMMONFLAGS =
  87.   COMMONDEFINES = -DNO_LIBGXX_MALLOC
  88.   
  89. ***************
  90. *** 14,20 ****
  91.          -DNDEBUG $(XFLAGS)
  92.   
  93.   GXXOPTS= $(COMMONOPT) $(COMMONFLAGS) $(COMMONDEFINES)  \
  94. !        -felide-constructors -fsave-memoized $(XXFLAGS)
  95.   
  96.   # Base options CC; includes int size but not omit-frame-pointer
  97.   CFFLAGS = $(COPTS)
  98. --- 14,20 ----
  99.          -DNDEBUG $(XFLAGS)
  100.   
  101.   GXXOPTS= $(COMMONOPT) $(COMMONFLAGS) $(COMMONDEFINES)  \
  102. !        -felide-constructors $(XXFLAGS)
  103.   
  104.   # Base options CC; includes int size but not omit-frame-pointer
  105.   CFFLAGS = $(COPTS)
  106. ***************
  107. *** 21,28 ****
  108.   GXXFFLAGS = $(GXXOPTS)
  109.   
  110.   # normal CFLAGS including int size and omit-frame-pointer
  111. ! CFLAGS= $(CFFLAGS)
  112. ! GXXFLAGS = $(GXXFFLAGS)
  113.   
  114.   # cflags for stuff that needs to be compiled with 32 bit ints
  115.   CLFLAGS= $(CFLAGS)
  116. --- 21,28 ----
  117.   GXXFFLAGS = $(GXXOPTS)
  118.   
  119.   # normal CFLAGS including int size and omit-frame-pointer
  120. ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
  121. ! GXXFLAGS = $(GXXFFLAGS) -fomit-frame-pointer
  122.   
  123.   # cflags for stuff that needs to be compiled with 32 bit ints
  124.   CLFLAGS= $(CFLAGS)
  125. *** 1.1    1992/03/22 21:15:45
  126. --- trationa.cc    1992/11/08 00:55:02
  127. ***************
  128. *** 102,108 ****
  129.     cout << "approxpi = " << approxpi << "\n";
  130.     cout << "double(approxpi) = " << double(approxpi) << "\n";
  131.   
  132. !   Rational rpi = Rational(PI);
  133.     cout << "rpi = Rational(PI) = " << rpi << "\n";
  134.     assert(rpi.OK());
  135.     cout << "double(rpi) = " << double(rpi) << "\n";
  136. --- 102,108 ----
  137.     cout << "approxpi = " << approxpi << "\n";
  138.     cout << "double(approxpi) = " << double(approxpi) << "\n";
  139.   
  140. !   Rational rpi = Rational(M_PI);
  141.     cout << "rpi = Rational(PI) = " << rpi << "\n";
  142.     assert(rpi.OK());
  143.     cout << "double(rpi) = " << double(rpi) << "\n";
  144. *** 1.1    1992/03/22 21:15:45
  145. --- tstring.cc    1992/11/08 00:55:03
  146. ***************
  147. *** 8,13 ****
  148. --- 8,15 ----
  149.   #include <std.h>
  150.   #include <assert.h>
  151.   
  152. + extern "C" long _stksize = 16*1024;
  153.   // can't nicely echo assertions because they contain quotes
  154.   
  155.   #define tassert(ex) {if (!(ex)) \
  156.